home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / pre_view.zip / PRNPREV.DPR < prev    next >
Text File  |  1995-10-28  |  393b  |  19 lines

  1. program Prnprev;
  2.  
  3. uses
  4.   Forms,
  5.   Dlmain in 'DLMAIN.PAS' {mainwin},
  6.   BTPrint in 'BTPRINT.PAS',
  7.   wPreview in 'WPREVIEW.PAS' {Preview},
  8.   Misc in 'MISC.PAS',
  9.   Wynform in 'WYNFORM.PAS' {ynform},
  10.   wSelprn in 'WSELPRN.PAS' {newprinter};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.CreateForm(Tmainwin, mainwin);
  16.   Application.CreateForm(Tnewprinter, newprinter);
  17.   Application.Run;
  18. end.
  19.